home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / magazine / executive_v2.00 / data / developers.lzx / ExecutiveAPI / smakefile < prev   
Makefile  |  2001-02-07  |  514b  |  25 lines

  1. #
  2. # SAS/C makefile for ExecutiveAPI/Example
  3. #
  4. # This file is public domain.
  5. #
  6. # Author: Petri Nordlund <petrin@megabaud.fi>
  7. #
  8. # $Id: smakefile 1.1 1996/09/05 23:20:18 petrin Exp petrin $
  9. #
  10.  
  11. #DEBUG     = DEBUG=SYMBOLFLUSH
  12. DEBUG     =
  13.  
  14. CFLAGS    = PARAMETERS=REGISTERS NOSTACKCHECK STRINGMERGE NOCHECKABORT \
  15.             NOMULTIPLEINCLUDES SMALLCODE SMALLDATA $(DEBUG)
  16.  
  17. Example: Example.o
  18.    sc link $(CFLAGS) Example.o
  19.  
  20. Example.o: Example.c
  21.    sc $(CFLAGS) Example.c
  22.  
  23. clean:
  24.    delete Example Example.lnk Example.o
  25.